listFiles()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an array of Strings | String[]
|
local table = {'string',{'tableception'}}
printTable(table,2)
action_wheel
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an ActionWheelAPI | ActionWheelAPI
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
examplePage:newAction(1):onRightClick(function() log('chat spam :3') end)
events.TICK:register(function()
action_wheel:execute(1,true)
end)
-- this will only run if the action wheel is open
action_wheel:execute()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
events.TICK:register(function()
if action_wheel:isEnabled() then
log("action wheel's is open!")
end
end)
action_wheel:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
for slot = 1,8 do
examplePage:newAction(slot)
end
events.TICK:register(function()
log(action_wheel:getSelected())
end)
-- returns even if the action wheel is closed
action_wheel:getSelected()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
action_wheel:createAction()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Action | Action
|
examplePage = action_wheel:createPage('pageName')
action_wheel:setPage(examplePage)
function action_wheel.leftClick()
log('you just left clicked while in the action wheel!')
end
leftClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes nothing and will return anything | Function<[], AnyType>
|
examplePage = action_wheel:createPage('pageName')
action_wheel:setPage(examplePage)
function action_wheel.rightClick()
log('you just left clicked while in the action wheel!')
end
rightClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes nothing and will return anything | Function<[], AnyType>
|
examplePage = action_wheel:createPage('pageName')
action_wheel:setPage(examplePage)
function action_wheel.scroll(direction)
log(direction)
end
scroll
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes a Number and will return anything | Function<[Number], AnyType>
|
animations
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a table | Table
|
avatar
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an AvatarAPI | AvatarAPI
|
avatar:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
avatar:getSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
avatar:getVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
avatar:getCurrentInstructions()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getRemainingParticles()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxWorldRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getAnimationComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxWorldTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxAnimationComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getWorldRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:canEditVanillaModel()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:getVolume()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxInitCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getEntityInitCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:hasTexture()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:getInitCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:hasScriptError()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:getMaxComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getRemainingSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getWorldTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxParticles()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getAuthors()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
avatar:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
avatar:canEditNameplate()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:getComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:canRenderOffscreen()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:canUseCustomSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ClientAPI | ClientAPI
|
log(client.getVersion())
client.getVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.getActiveResourcePacks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
client.isDebugOverlayEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getScaledWindowSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
client.getEntityStatistics()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.hasIris()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getCameraRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
client.getCameraPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
client.getFPS()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getFPSString()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.getAllocatedMemory()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getMaxMemory()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.isHudEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getEntityCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getFOV()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
client.getVersionType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.isWindowFocused()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getWindowSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
client.getSoundStatistics()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.getServerBrand()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.getJavaVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.getParticleCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
events.TICK:register(function()
log(client.getUsedMemory())
end)
-- returns memory in bytes
client.getUsedMemory()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getChunkStatistics()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
log(client.getGuiScale())
client.getGuiScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
client.getSystemTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getActiveLang()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.hasIrisShader()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getFiguraVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
client.getMousePos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
client.getViewer()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
config
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ConfigAPI | ConfigAPI
|
events
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an EventsAPI | EventsAPI
|
ENTITY_INIT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
WORLD_TICK
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
POST_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
WORLD_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
POST_WORLD_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
CHAT_SEND_MESSAGE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
CHAT_RECEIVE_MESSAGE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
SKULL_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
MOUSE_SCROLL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
USE_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
figuraMetatables
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a table | Table
|
host
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a HostAPI | HostAPI
|
host:isHost()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
host:getTargetedEntity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
host:clearTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
host:getChatText()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
host:isContainerOpen()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
host:getChatColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
host:isChatOpen()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
unlockCursor
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
keybind
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a KeybindAPI | KeybindAPI
|
matrices
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a MatricesAPI | MatricesAPI
|
matrices.mat3()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
matrices.mat4()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ModelPart | ModelPart
|
models:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
models:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
models:getChildren()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an array of ModelParts | ModelPart[]
|
models:addItem(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
models:getTask()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table mapping a String to a RenderTask | Table<String, RenderTask>
|
models:getTask(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
models:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:overrideVanillaRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
models:overrideVanillaPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
models:getPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getOffsetPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getAnimRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getAnimScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getOffsetRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getNormalMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
models:getNormalMatrixRaw()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
models:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getAnimPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getPositionMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models:getTextureSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
models:getUV()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
models:partToWorldMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models:getOpacity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
models:addBlock(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
models:getUVMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
models:addText(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
models:getUVPixels()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
models:getLight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
models:getParentType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
models:getTextures()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
models:overrideVanillaScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
models:getPrimaryRenderType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | either a RenderTypes or nil | RenderTypes | nil
|
models:getSecondaryRenderType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | either a RenderTypes or nil | RenderTypes | nil
|
models:getPositionMatrixRaw()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
nameplate
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateAPI | NameplateAPI
|
CHAT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateCustomization | NameplateCustomization
|
ENTITY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an EntityNameplateCustomization | EntityNameplateCustomization
|
LIST
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateCustomization | NameplateCustomization
|
ALL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateCustomizationGroup | NameplateCustomizationGroup
|
particles
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ParticleAPI | ParticleAPI
|
particles:addParticle(name, posX, posY, posZ, velX, velY, velZ)
particles:removeParticles()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
player
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a PlayerAPI | PlayerAPI
|
if player:getExperienceLevel() == 30 then
log("You have 30 levels")
end
player:getExperienceLevel()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
if player:isFlying() then
log("You're flying")
end
player:isFlying()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
if player:getModelType() == "DEFAULT" then
log("You're Steve")
end
player:getModelType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
if player:getFood() == 0 then
log("You're starving")
end
player:getFood()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
if player:getSaturation() == 20 then
log("Your saturation is 20")
end
player:getSaturation()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
if player:isSkinLayerVisible("HAT") then
log("Your hat's on")
end
if player:getGamemode() and player:getGamemode() == "SURVIVAL" then
log("You're in survival mode")
end
if player:getExperienceProgress() > .5 then
log("You're over halfway to the next level")
end
player:getExperienceProgress()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
player:getSwingDuration()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getHealth() == 20 then
log("You're at full health")
end
player:getHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
if player:getMaxHealth() == 20 then
log("You're healthy")
end
player:getMaxHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
if player:getDeathTime() > 0 then
log("You're dead")
end
player:getDeathTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
if player:getArmor() == 20 then
log("You have max armor points")
end
player:getArmor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
if player:getHeldItem(false).id == "minecraft:diamond_sword" then
log("You're holding a diamond sword")
end
Inherited from LivingEntityAPI
if player:getActiveItem().id == "minecraft:bow" then
log("You're drawing back a bow")
end
player:getActiveItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an ItemStack | ItemStack
|
Inherited from LivingEntityAPI
player:getActiveItemTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
Inherited from LivingEntityAPI
player:getSwingArm()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
for i, effect in ipairs(player:getStatusEffects()) do
if effect.name == "effect.minecraft.night_vision" then
log("Night vision")
end
end
player:getStatusEffects()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Inherited from LivingEntityAPI
if player:isLeftHanded() then
log("You're left handed")
end
player:isLeftHanded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isUsingItem() then
log("You're using an item")
end
player:isUsingItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isClimbing() then
log("You're climbing")
end
player:isClimbing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getActiveHand() == "MAIN_HAND" then
log("You're using your main hand")
end
player:getActiveHand()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
if player:getArrowCount() > 0 then
log("You've been shot")
end
player:getArrowCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getStingerCount() > 0 then
log("You've been stung")
end
player:getStingerCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
player:isSwingingArm()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
player:getSwingTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getName() == "JimmyHelp" then
log("You're... me?")
end
player:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
if player:getType() == "minecraft:player" then
log("You're a player")
end
player:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
if player:isLoaded() then
log("You're being loaded")
end
player:isLoaded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getItem(5).id == "minecraft:elytra" then
log("You're wearing an elytra")
end
Inherited from LivingEntityAPI
player:getNbt()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Inherited from LivingEntityAPI
if player:getPose() == "CROUCHING" then
log("You're crouching")
end
player:getPose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
Inherited from LivingEntityAPI
if player:getVehicle() and player:getVehicle():getType() == "minecraft:pig" then
log("You're riding a pig")
end
player:getVehicle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
Inherited from LivingEntityAPI
Inherited from LivingEntityAPI
if player:getUUID() == "5003b2ce-7a8d-4c56-8b91-ec705985fe08" then
log("You're... me?")
end
player:getUUID()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
if player:isHamburger() then
log("You're hamburger")
end
player:isHamburger()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
player:getLookDir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from LivingEntityAPI
if player:getFrozenTicks() == 140 then
log("You're being frozen solid")
end
player:getFrozenTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getVelocity():length() > 0 then
log("You're moving in any direction")
end
player:getVelocity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from LivingEntityAPI
if player:getMaxAir() == 300 then
log("You've got healthy lungs")
end
player:getMaxAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
player:getFireTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getDimensionName() == "minecraft:overworld" then
log("You're in the Overworld")
end
player:getDimensionName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from LivingEntityAPI
if player:getAir() < 0 then
log("You're drowning")
end
player:getAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:isInLava() then
log("You're in lava")
end
player:isInLava()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isOnFire() then
log("You're on fire")
end
player:isOnFire()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isOnGround() then
log("You're on the ground")
end
player:isOnGround()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isSneaking() then
log("You're sneaking")
end
player:isSneaking()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
player:getEyeY()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
player:getBoundingBox()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from LivingEntityAPI
if player:isInRain() then
log("You're in rain")
end
player:isInRain()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isUnderwater() then
log("You're underwater")
end
player:isUnderwater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isInWater() then
log("You're in water")
end
player:isInWater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isSilent() then
log("You're silent")
end
player:isSilent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:hasAvatar() then
log("You have an avatar")
end
player:hasAvatar()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
player:getEyeHeight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from LivingEntityAPI
if player:isSprinting() then
log("You're sprinting")
end
player:isSprinting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isGlowing() then
log("You're glowing")
end
player:isGlowing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isInvisible() then
log("You're invisible")
end
player:isInvisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isWet() then
log("You're touching water")
end
player:isWet()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getTargetedBlock(true,4.5).id == "minecraft:grass_block" then
log("You're looking at grass")
end
player:getTargetedBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a BlockState | BlockState
|
player:getTargetedBlock(ignoreLiquids)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| Return Value | a BlockState | BlockState
|
player:getTargetedBlock(ignoreLiquids, distance)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| distance accepts | a Number | Number
|
| Return Value | a BlockState | BlockState
|
Inherited from LivingEntityAPI
renderer
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a RendererAPI | RendererAPI
|
renderer:getCameraOffsetPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:getCameraRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:isCameraBackwards()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
renderer:getShadowRadius()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
renderer:getCameraOffsetRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:getCameraPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:isFirstPerson()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
renderFire
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
renderVehicle
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
renderCrosshair
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
forcePaperdoll
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
sounds
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a SoundAPI | SoundAPI
|
sounds:playSound(sound, posX, posY, posZ, volume, pitch, loop)
textures
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a TextureAPI | TextureAPI
|
textures:getTextures()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
type
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes anything and will return a Boolean | Function<[AnyType], Boolean>
|
user
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an EntityAPI | EntityAPI
|
user:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
user:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
user:isLoaded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getNbt()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
user:getPose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
user:getUUID()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
user:isHamburger()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getLookDir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
user:getFrozenTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:getVelocity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
user:getMaxAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:getFireTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:getDimensionName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
user:getAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:isInLava()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isOnFire()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isOnGround()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isSneaking()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getEyeY()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
user:getBoundingBox()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
user:isInRain()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isUnderwater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isInWater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isSilent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:hasAvatar()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getEyeHeight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
user:isSprinting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isGlowing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isInvisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isWet()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getTargetedBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a BlockState | BlockState
|
user:getTargetedBlock(ignoreLiquids)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| Return Value | a BlockState | BlockState
|
user:getTargetedBlock(ignoreLiquids, distance)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| distance accepts | a Number | Number
|
| Return Value | a BlockState | BlockState
|
vanilla_model
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelAPI | VanillaModelAPI
|
HEAD
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
BODY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HAT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
JACKET
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_SLEEVE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_SLEEVE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_PANTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_PANTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CAPE_MODEL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
FAKE_CAPE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HELMET_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HELMET_HEAD
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HELMET_HAT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CHESTPLATE_BODY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CHESTPLATE_LEFT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CHESTPLATE_RIGHT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEGGINGS_BODY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEGGINGS_LEFT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEGGINGS_RIGHT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
BOOTS_LEFT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
BOOTS_RIGHT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_ELYTRA
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_ELYTRA
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_PARROT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_PARROT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
ALL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
PLAYER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
OUTER_LAYER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
INNER_LAYER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
CAPE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
ARMOR
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
HELMET
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
CHESTPLATE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
LEGGINGS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
BOOTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
ELYTRA
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
HELD_ITEMS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
PARROTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
vec
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | either a function that takes a Number, a Number and will return a Vector2 or a function that takes a Number, a Number, a Number and will return a Vector3 or a function that takes a Number, a Number, a Number, a Number and will return a Vector4 or a function that takes a Number, a Number, a Number, a Number, a Number and will return a Vector5 or a function that takes a Number, a Number, a Number, a Number, a Number, a Number and will return a Vector6 | Function<[Number, Number], Vector2> | Function<[Number, Number, Number], Vector3> | Function<[Number, Number, Number, Number], Vector4> | Function<[Number, Number, Number, Number, Number], Vector5> | Function<[Number, Number, Number, Number, Number, Number], Vector6>
|
vectors
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VectorsAPI | VectorsAPI
|
vectors.rotateAroundAxis(angle, vec, axisX, axisY, axisZ)
vectors.rotateAroundAxis(angle, x, y, z, axisX, axisY, axisZ)
world
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a WorldAPI | WorldAPI
|
world.exists()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
world.getMoonPhase()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
world.isThundering()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
world.getBlockState(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a BlockState | BlockState
|
world.getBlockState(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a BlockState | BlockState
|
world.playerVars()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
world.newBlock(block)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a String | String
|
| Return Value | a BlockState | BlockState
|
world.newBlock(block, pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a String | String
|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a BlockState | BlockState
|
world.newBlock(block, x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a String | String
|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a BlockState | BlockState
|
Action:getTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Action:getToggleTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Action:getToggleColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Action:getHoverColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Action:onToggle(leftFunction)
| Method Property | Fluent Description | Representation |
|---|---|---|
| leftFunction accepts | a function that takes a Boolean, an Action and will return anything | Function<[Boolean, Action], AnyType>
|
| Return Value | an Action | Action
|
Action:onScroll(scrollFunction)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scrollFunction accepts | a function that takes a Number, an Action and will return anything | Function<[Number, Action], AnyType>
|
| Return Value | an Action | Action
|
local myAction = myPage:newAction()
myAction:onLeftClick(function()
log("Heheh I got Left Clicked!")
end)
Action:onLeftClick(leftFunction)
| Method Property | Fluent Description | Representation |
|---|---|---|
| leftFunction accepts | a function that takes an Action and will return anything | Function<[Action], AnyType>
|
| Return Value | an Action | Action
|
local myAction = myPage:newAction()
myAction:onRightClick(function()
log("Heheh I got Right Clicked!")
end)
Action:onRightClick(rightFunction)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rightFunction accepts | a function that takes an Action and will return anything | Function<[Action], AnyType>
|
| Return Value | an Action | Action
|
Action:onUntoggle(rightFunction)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rightFunction accepts | a function that takes a Boolean, an Action and will return anything | Function<[Boolean, Action], AnyType>
|
| Return Value | an Action | Action
|
Action:isToggled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Action:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
leftClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes an Action and will return anything | Function<[Action], AnyType>
|
rightClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes an Action and will return anything | Function<[Action], AnyType>
|
toggle
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes a Boolean, an Action and will return anything | Function<[Boolean, Action], AnyType>
|
untoggle
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes a Boolean, an Action and will return anything | Function<[Boolean, Action], AnyType>
|
scroll
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes a Number, an Action and will return anything | Function<[Number, Action], AnyType>
|
Animation:getLength()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:getPriority()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Animation:getOffset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:getTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:pause()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
Animation:restart()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
Animation:getPlayState()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Animation:getBlend()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:getSpeed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:getOverrideRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Animation:getOverridePos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Animation:getLoopDelay()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:getOverrideScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Animation:getStartDelay()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Animation:getLoop()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
animations.bbmodelName.animationName:play()
Biome:isHot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Biome:getSkyColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getWaterColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Biome:getPrecipitation()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Biome:isCold()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Biome:getTemperature()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Biome:getFoliageColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getGrassColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getDownfall()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Biome:getFogColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getWaterFogColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
BlockState:isOpaque()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:hasEmissiveLighting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getComparatorOutput()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
BlockState:getTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getFluidTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getBlastResistance()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
BlockState:getCollisionShape()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getOutlineShape()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getMapColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
BlockState:isTranslucent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:emitsRedstonePower()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:isSolidBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:isFullCube()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:hasBlockEntity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getFriction()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
BlockState:getEntityData()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:toStateString()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
BlockState:getHardness()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
BlockState:getMaterial()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
BlockState:getLuminance()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
BlockState:hasCollision()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getJumpVelocityMultiplier()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
BlockState:getVelocityMultiplier()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
BlockState:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
BlockState:getOpacity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
properties
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a table | Table
|
BlockTask:block(block)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:block(block)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a BlockState | BlockState
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
BlockTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
BlockTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
BlockTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
BlockTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
subclasses NameplateCustomization
EntityNameplateCustomization:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
EntityNameplateCustomization:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from NameplateCustomization
EntityNameplateCustomization:getText()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from NameplateCustomization
visible
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
shadow
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
outline
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
Event:register(func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function | Function
|
| Return Value | nil | nil
|
Event:register(func, name)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function | Function
|
| name accepts | a String | String
|
| Return Value | nil | nil
|
ItemStack:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
ItemStack:getCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
ItemStack:isBlockItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:getRarity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
ItemStack:getDamage()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:isDamageable()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:isFood()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:isStackable()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:getUseAction()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
ItemStack:getCooldown()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getMaxCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:hasGlint()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:getMaxDamage()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:isEnchantable()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:toStackString()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
ItemStack:getUseDuration()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getRepairCost()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemTask:item(item)
| Method Property | Fluent Description | Representation |
|---|---|---|
| item accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:item(item)
| Method Property | Fluent Description | Representation |
|---|---|---|
| item accepts | an ItemStack | ItemStack
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:renderType(renderType)
| Method Property | Fluent Description | Representation |
|---|---|---|
| renderType accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:getRenderType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from RenderTask
ItemTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
ItemTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
ItemTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
ItemTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
ItemTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Keybind:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Keybind:getKey()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Keybind:isDefault()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Keybind:getKeyName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Keybind:isPressed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
onPress
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes a Keybind and will return anything | Function<[Keybind], AnyType>
|
onRelease
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a function that takes a Keybind and will return anything | Function<[Keybind], AnyType>
|
enabled
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
LivingEntityAPI:getSwingDuration()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
LivingEntityAPI:getHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
LivingEntityAPI:getMaxHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
LivingEntityAPI:getDeathTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
LivingEntityAPI:getArmor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
LivingEntityAPI:getActiveItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an ItemStack | ItemStack
|
LivingEntityAPI:getActiveItemTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
LivingEntityAPI:getSwingArm()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
LivingEntityAPI:getStatusEffects()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
LivingEntityAPI:isLeftHanded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:isUsingItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:isClimbing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:getActiveHand()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
LivingEntityAPI:getArrowCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
LivingEntityAPI:getStingerCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
LivingEntityAPI:isSwingingArm()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:getSwingTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from EntityAPI
LivingEntityAPI:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from EntityAPI
LivingEntityAPI:isLoaded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
Inherited from EntityAPI
LivingEntityAPI:getNbt()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Inherited from EntityAPI
LivingEntityAPI:getPose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from EntityAPI
Inherited from EntityAPI
LivingEntityAPI:getVehicle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
Inherited from EntityAPI
Inherited from EntityAPI
LivingEntityAPI:getUUID()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from EntityAPI
LivingEntityAPI:isHamburger()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getLookDir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from EntityAPI
LivingEntityAPI:getFrozenTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getVelocity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from EntityAPI
LivingEntityAPI:getMaxAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getFireTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getDimensionName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Inherited from EntityAPI
LivingEntityAPI:getAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:isInLava()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isOnFire()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isOnGround()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isSneaking()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getEyeY()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from EntityAPI
LivingEntityAPI:getBoundingBox()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from EntityAPI
LivingEntityAPI:isInRain()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isUnderwater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isInWater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isSilent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:hasAvatar()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getEyeHeight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Inherited from EntityAPI
LivingEntityAPI:isSprinting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isGlowing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isInvisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isWet()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getTargetedBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a BlockState | BlockState
|
LivingEntityAPI:getTargetedBlock(ignoreLiquids)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| Return Value | a BlockState | BlockState
|
LivingEntityAPI:getTargetedBlock(ignoreLiquids, distance)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| distance accepts | a Number | Number
|
| Return Value | a BlockState | BlockState
|
Inherited from EntityAPI
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__eq
|
|
x == y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
__len
|
#x
|
Matrix2:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:inverted()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:transpose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:invert()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:augmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix2:transposed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:det()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__eq
|
|
x == y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
__len
|
#x
|
Matrix3:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:inverted()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:transpose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:invert()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:augmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix3:transposed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:det()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Matrix3:deaugmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__eq
|
|
x == y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
__len
|
#x
|
Matrix4:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:inverted()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:transpose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:invert()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:transposed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:det()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Matrix4:deaugmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
NameplateCustomization:getText()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Particle:remove()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Particle | Particle
|
Particle:isAlive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Particle:getLifetime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Particle:spawn()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Particle | Particle
|
RenderTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
RenderTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
RenderTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
RenderTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
RenderTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Sound:stop()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Sound | Sound
|
Sound:isPlaying()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Sound:pause()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Sound | Sound
|
Sound:getAttenuation()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Sound:getPitch()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Sound:getVolume()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Sound:isLooping()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Sound:play()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Sound | Sound
|
Sound:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
TextTask:right(right)
| Method Property | Fluent Description | Representation |
|---|---|---|
| right accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
TextTask:text(text)
| Method Property | Fluent Description | Representation |
|---|---|---|
| text accepts | a String | String
|
| Return Value | a RenderTask | RenderTask
|
TextTask:isCentered()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
TextTask:getOutlineColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
TextTask:hasOutline()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
TextTask:isRight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
TextTask:hasShadow()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
TextTask:outline(outline)
| Method Property | Fluent Description | Representation |
|---|---|---|
| outline accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
TextTask:centered(centered)
| Method Property | Fluent Description | Representation |
|---|---|---|
| centered accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
TextTask:shadow(shadow)
| Method Property | Fluent Description | Representation |
|---|---|---|
| shadow accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
TextTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
TextTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
TextTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
TextTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
TextTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a Number | Number
|
| y accepts | a Number | Number
|
| z accepts | a Number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
TextTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
TextTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Texture:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Texture:fill(x, y, width, height, r, g, b, a)
Texture:save()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a String | String
|
Texture:getDimensions()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Texture:restore()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
Texture:applyFunc(x, y, width, height, func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | an Integer | Integer
|
| y accepts | an Integer | Integer
|
| width accepts | an Integer | Integer
|
| height accepts | an Integer | Integer
|
| func accepts | a function that takes a Vector4, a Number, a Number and will return either a Vector4 or nil | Function<[Vector4, Number, Number], Vector4 | nil>
|
| Return Value | nil | nil
|
VanillaModelGroup:getVisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
VanillaModelPart:getOriginRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
VanillaModelPart:getOriginVisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
VanillaModelPart:getOriginPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
VanillaModelPart:getVisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector2:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector2:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:unpack()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | [D
|
Vector2:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector2:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:applyFunc(func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function that takes a Number, an Integer and will return a Number | Function<[Number, Integer], Number>
|
| Return Value | a Vector2 | Vector2
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector3:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector3:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:unpack()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | [D
|
Vector3:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector3:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:applyFunc(func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function that takes a Number, an Integer and will return a Number | Function<[Number, Integer], Number>
|
| Return Value | a Vector3 | Vector3
|
Vector3:augmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector4:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector4:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:unpack()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | [D
|
Vector4:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector4:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:applyFunc(func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function that takes a Number, an Integer and will return a Number | Function<[Number, Integer], Number>
|
| Return Value | a Vector4 | Vector4
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector5:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector5:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:unpack()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | [D
|
Vector5:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector5:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:applyFunc(func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function that takes a Number, an Integer and will return a Number | Function<[Number, Integer], Number>
|
| Return Value | a Vector5 | Vector5
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector6:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector6:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:unpack()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | [D
|
Vector6:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Number | Number
|
Vector6:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:applyFunc(func)
| Method Property | Fluent Description | Representation |
|---|---|---|
| func accepts | a function that takes a Number, an Integer and will return a Number | Function<[Number, Integer], Number>
|
| Return Value | a Vector6 | Vector6
|
playerScale
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Number | Number
|
worldScale
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Number | Number
|
FRAN_PINK
fran
francielly
bunny
CHLOE_PURPLE
chloe
space
MAYA_BLUE
maya
devnull
limits
SKYE_BLUE
sky
skye
skylar
LILY_RED
lily
foxes
fox
CHEESE
largecheese
large cheese
LUA_LOG
LUA_ERROR
LUA_PING
luna
moff
moth
DEFAULT
DISCORD
STANDING
FALL_FLYING
SLEEPING
SWIMMING
SPIN_ATTACK
CROUCHING
LONG_JUMPING
DYING
CROAKING
USING_TONGUE
ROARING
SNIFFING
EMERGING
DIGGING
NONE
THIRD_PERSON_LEFT_HAND
THIRD_PERSON_RIGHT_HAND
FIRST_PERSON_LEFT_HAND
FIRST_PERSON_RIGHT_HAND
HEAD
GUI
GROUND
FIXED
key.playerlist
figura.config.action_wheel_button
key.sneak
key.hotbar.8
key.hotbar.7
key.sprint
key.hotbar.6
key.hotbar.5
key.hotbar.4
key.hotbar.3
key.hotbar.2
key.togglePerspective
key.hotbar.1
key.spectatorOutlines
key.left
key.chat
key.pickItem
key.socialInteractions
key.fullscreen
key.attack
key.smoothCamera
key.advancements
figura.config.popup_button
key.use
figura.config.panic_button
key.loadToolbarActivator
figura.config.reload_button
key.hotbar.9
key.forward
key.right
key.screenshot
key.back
key.swapOffhand
key.command
key.saveToolbarActivator
key.inventory
key.jump
key.drop
key.keyboard.unknown
key.mouse.left
key.mouse.right
key.mouse.middle
key.mouse.4
key.mouse.5
key.mouse.6
key.mouse.7
key.mouse.8
key.keyboard.0
key.keyboard.1
key.keyboard.2
key.keyboard.3
key.keyboard.4
key.keyboard.5
key.keyboard.6
key.keyboard.7
key.keyboard.8
key.keyboard.9
key.keyboard.a
key.keyboard.b
key.keyboard.c
key.keyboard.d
key.keyboard.e
key.keyboard.f
key.keyboard.g
key.keyboard.h
key.keyboard.i
key.keyboard.j
key.keyboard.k
key.keyboard.l
key.keyboard.m
key.keyboard.n
key.keyboard.o
key.keyboard.p
key.keyboard.q
key.keyboard.r
key.keyboard.s
key.keyboard.t
key.keyboard.u
key.keyboard.v
key.keyboard.w
key.keyboard.x
key.keyboard.y
key.keyboard.z
key.keyboard.f1
key.keyboard.f2
key.keyboard.f3
key.keyboard.f4
key.keyboard.f5
key.keyboard.f6
key.keyboard.f7
key.keyboard.f8
key.keyboard.f9
key.keyboard.f10
key.keyboard.f11
key.keyboard.f12
key.keyboard.f13
key.keyboard.f14
key.keyboard.f15
key.keyboard.f16
key.keyboard.f17
key.keyboard.f18
key.keyboard.f19
key.keyboard.f20
key.keyboard.f21
key.keyboard.f22
key.keyboard.f23
key.keyboard.f24
key.keyboard.f25
key.keyboard.num.lock
key.keyboard.keypad.0
key.keyboard.keypad.1
key.keyboard.keypad.2
key.keyboard.keypad.3
key.keyboard.keypad.4
key.keyboard.keypad.5
key.keyboard.keypad.6
key.keyboard.keypad.7
key.keyboard.keypad.8
key.keyboard.keypad.9
key.keyboard.keypad.add
key.keyboard.keypad.decimal
key.keyboard.keypad.enter
key.keyboard.keypad.equal
key.keyboard.keypad.multiply
key.keyboard.keypad.divide
key.keyboard.keypad.subtract
key.keyboard.down
key.keyboard.left
key.keyboard.right
key.keyboard.up
key.keyboard.apostrophe
key.keyboard.backslash
key.keyboard.comma
key.keyboard.equal
key.keyboard.grave.accent
key.keyboard.left.bracket
key.keyboard.minus
key.keyboard.period
key.keyboard.right.bracket
key.keyboard.semicolon
key.keyboard.slash
key.keyboard.space
key.keyboard.tab
key.keyboard.left.alt
key.keyboard.left.control
key.keyboard.left.shift
key.keyboard.left.win
key.keyboard.right.alt
key.keyboard.right.control
key.keyboard.right.shift
key.keyboard.right.win
key.keyboard.enter
key.keyboard.escape
key.keyboard.backspace
key.keyboard.delete
key.keyboard.end
key.keyboard.home
key.keyboard.insert
key.keyboard.page.down
key.keyboard.page.up
key.keyboard.caps.lock
key.keyboard.pause
key.keyboard.scroll.lock
key.keyboard.menu
key.keyboard.print.screen
key.keyboard.world.1
key.keyboard.world.2
LOOP
ONCE
HOLD
None
NONE
Head
HEAD
Body
BODY
LeftArm
LEFT_ARM
RightArm
RIGHT_ARM
LeftLeg
LEFT_LEG
RightLeg
RIGHT_LEG
LeftElytra
LEFT_ELYTRA
LeftElytron
LEFT_ELYTRON
RightElytra
RIGHT_ELYTRA
RightElytron
RIGHT_ELYTRON
Cape
CAPE
World
WORLD
Hud
HUD
Gui
GUI
Camera
CAMERA
Skull
SKULL
?
Portrait
PORTRAIT
LeftItemPivot
LEFT_ITEM_PIVOT
RightItemPivot
RIGHT_ITEM_PIVOT
LeftSpyglassPivot
LEFT_SPYGLASS_PIVOT
RightSpyglassPivot
RIGHT_SPYGLASS_PIVOT
HelmetItemPivot
HELMET_ITEM_PIVOT
LeftParrotPivot
LEFT_PARROT_PIVOT
RightParrotPivot
RIGHT_PARROT_PIVOT
STOPPED
PAUSED
PLAYING
CAPE
JACKET
LEFT_SLEEVE
RIGHT_SLEEVE
LEFT_PANTS
RIGHT_PANTS
HAT
notch
fxaa
art
bumpy
blobs2
pencil
color_convolve
deconverge
flip
invert
ntsc
outline
phosphor
scan_pincushion
sobel
bits
desaturate
green
blur
wobble
blobs
antialias
creeper
spider
FIGURA_GUI
PAPERDOLL
MINECRAFT_GUI
FIRST_PERSON
RENDER
OTHER
NONE
CUTOUT
CUTOUT_CULL
TRANSLUCENT
TRANSLUCENT_CULL
EMISSIVE
EMISSIVE_SOLID
END_PORTAL
END_GATEWAY
GLINT
GLINT2
LINES
LINES_STRIP
SKIN
CAPE
ELYTRA
RESOURCE
PRIMARY
SECONDARY
CUSTOM
NONE
EAT
DRINK
BLOCK
BOW
SPEAR
CROSSBOW
SPYGLASS
TOOT_HORN